iT邦幫忙

2022 iThome 鐵人賽

DAY 20
0
自我挑戰組

Python簡單應用系列 第 20

Day 20 - Python物件導向

  • 分享至 

  • xImage
  •  

在Python中,所有的資料類型皆是物件,而它也允許我們自創資料類,這種東西就是接下來要介紹的類別(class)
語法定義
class Class_name() #類別名稱第一個字母建議用大寫
statement

class Fruit():
    fruitname = 'World Fruit'
    def motto():
    return "以客為尊"
customer = Fruit
print("水果店名 ", customer.fruitname)
print("服務理念 ", customer.motto())

https://ithelp.ithome.com.tw/upload/images/20220929/20151938G5Y2BNbq8s.jpg
以前會覺得這非常困難,重新看一次之後會發現,其實很簡單!


上一篇
Day 19 - Pythonc函數設計應用
下一篇
Day 21 - Python讀取檔案的應用
系列文
Python簡單應用30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言